home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / fread.c,v < prev    next >
Text File  |  1991-12-02  |  4KB  |  147 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     91.05.29.16.49.29;  author shirriff;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.49;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.19.57.38;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Changed fread, fwrite to work a chunk at a time instead of a character
  32. at a time.
  33.  
  34. @
  35. text
  36. @/* 
  37.  * fread.c --
  38.  *
  39.  *    Source code for the "fread" library procedure.
  40.  *
  41.  * Copyright 1988 Regents of the University of California
  42.  * Permission to use, copy, modify, and distribute this
  43.  * software and its documentation for any purpose and without
  44.  * fee is hereby granted, provided that the above copyright
  45.  * notice appear in all copies.  The University of California
  46.  * makes no representations about the suitability of this
  47.  * software for any purpose.  It is provided "as is" without
  48.  * express or implied warranty.
  49.  */
  50.  
  51. #ifndef lint
  52. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fread.c,v 1.1 88/06/10 16:23:49 ouster Exp Locker: shirriff $ SPRITE (Berkeley)";
  53. #endif not lint
  54.  
  55. #include "stdio.h"
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * fread --
  61.  *
  62.  *    This procedure inputs binary data from a buffered stream.
  63.  *
  64.  * Results:
  65.  *    The return value is the number of complete items actually read.
  66.  *    It may be less than numItems if an end-of-file or error condition
  67.  *    was encountered;  in this case, there may be an additional
  68.  *    partial item in buf after the complete items.
  69.  *
  70.  * Side effects:
  71.  *    Up to numItems*size bytes are read from stream to the memory at
  72.  *    buf.
  73.  *
  74.  *----------------------------------------------------------------------
  75.  */
  76.  
  77. int
  78. fread(bufferPtr, size, numItems, stream)
  79.     register char *bufferPtr;    /* Place to put the items that are read.
  80.                  * Must have enough space for numItems*size
  81.                  * bytes. */
  82.     int size;            /* Size of each item to be read. */
  83.     int numItems;        /* Number of items to be read from stream. */
  84.     register FILE *stream;    /* Stream from which bytes are to be read. */
  85. {
  86.     register int num, c, byteCount, itemCount;
  87.  
  88.     for (itemCount = 0; itemCount < numItems; itemCount++) {
  89.         for (byteCount = size; byteCount > 0;) {
  90.             if (stream->readCount>1) {
  91.                 num = stream->readCount < byteCount ? stream->readCount
  92.                         : byteCount;
  93.                 bcopy(stream->lastAccess+1, bufferPtr, num);
  94.                 stream->lastAccess += num;
  95.                 stream->readCount -= num;
  96.                 byteCount -= num;
  97.                 bufferPtr += num;
  98.             } else {
  99.                 c = getc(stream);
  100.                 if (c == EOF) {
  101.                     return(itemCount);
  102.                 }
  103.                 *bufferPtr = c;
  104.                 bufferPtr++;
  105.                 byteCount--;
  106.             }
  107.         }
  108.     }
  109.     return(numItems);
  110. }
  111. @
  112.  
  113.  
  114. 1.2.1.1
  115. log
  116. @Initial branch for Sprite server.
  117. @
  118. text
  119. @d17 1
  120. a17 1
  121. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fread.c,v 1.2 91/05/29 16:49:29 shirriff Exp $ SPRITE (Berkeley)";
  122. @
  123.  
  124.  
  125. 1.1
  126. log
  127. @Initial revision
  128. @
  129. text
  130. @d17 1
  131. a17 1
  132. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  133. d51 1
  134. a51 1
  135.     register int itemCount, byteCount, c;
  136. d54 19
  137. a72 8
  138.     for (byteCount = 0; byteCount < size; byteCount++) {
  139.         c = getc(stream);
  140.         if (c == EOF) {
  141.         return(itemCount);
  142.         }
  143.         *bufferPtr = c;
  144.         bufferPtr++;
  145.     }
  146. @
  147.